home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / dl_exsrc.zoo / strpos.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-02  |  204 b   |  12 lines

  1. #include <string.h>
  2. #include "extras.h"
  3.  
  4. int strpos(string, symbol)
  5.   const char *string;
  6.   int symbol;
  7. {
  8.   register char *t = strchr(string, symbol);
  9.  
  10.   return (t ? (int)(t - string) : -1);
  11. }
  12.